#Add Library/Reset Py.
LMB:Connect Buttonbar with Blender.**This will add the path to the Library to**Blender-Pythos search pathes.**_
RMB:Reset Blenders Python-Console.
import sys
import os
a='[?lib]Library//'
print("Please verify that this is your Library Path with the Scripts.")
print(a)
print("-------------------------------------")
# Add the path to Blender-Python's search paths if not already there

sys.path.append(a)
print("Path was successfully added to Blender.")

# Import the module. This creates the 'Library' name.
import Library
import user_library
    
# Reload the module to ensure you have the latest code.
importlib.reload(Library)
importlib.reload(user_library)

# Import all functions/classes for easy access
from Library import *
from user_library import *
LIF=0
print("\nSUCCESS: The 'Library.py' module was imported and reloaded.")

#END
[OnRightMouseButton!]
Reset_Python()
#END